- /* sioshftr.cpp by K.Tsuru */
- // function ID = 411 BRADIX
- /************************************************
- SInteger class
- It provides the bit shift operation to the right,ie
- divides by 2^n.
- ************************************************/
- #ifndef SN_H
- #include "sn.h"
- #endif
-
- SInteger operator>>(const SInteger& m, ulong n){
- if(!n || (m.Sign(411) == 0)) return m;
- SInteger result(m);
- result.BitShift(-(long)n);
- return result;
- }
sioshftr.cpp : last modifiled at 2015/12/14 20:14:42(454 bytes)
created at 2016/04/25 14:53:17
The creation time of this html file is 2017/10/25 11:09:45 (Wed Oct 25 11:09:45 2017).